Forum Moderators: open
Given the following XML file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<weetest xmlns="http://www.example.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.example.com file:/Users/cmarshall/Desktop/XMLTest/wee_test/wee_test.xsd">
<elementwrapper id="1">
<data_name>Test</data_name>
<data_uri>http://www.example.com/wee_test.html</data_uri>
</elementwrapper>
<elementwrapper id="2">
<data_name>Test</data_name>
<data_uri></data_uri>
</elementwrapper>
<elementwrapper id="3">
<data_name>Test</data_name>
</elementwrapper>
</weetest>
I have two iterations that don't have valid URIs. One has an empty
<data_uri> element, and the other has none. I have modified the schema to accommodate it: <?xml version="1.0"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.com"
elementFormDefault="qualified">
<xs:element name="weetest">
<xs:complexType>
<xs:sequence maxOccurs="unbounded">
<xs:element name="elementwrapper">
<xs:complexType>
<xs:sequence>
<xs:element name="data_name" type="xs:string"/>
<xs:element minOccurs="0" name="data_uri" type="xs:anyURI"/>
</xs:sequence>
<xs:attribute name="id" type="xs:integer" />
</xs:complexType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:schema>
And here is our current XSLT file:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:wt="http://www.example.com" exclude-result-prefixes="wt">
<xsl:output method="html" version="4.01"/>
<xsl:output doctype-system="http://www.w3c.org/tr/html4/strict.dtd"/>
<xsl:output doctype-public="-//W3c//DTD HTML 4.01//EN"/>
<xsl:template match="/">
<html>
<head>
<title>XML Test</title>
</head>
<body>
<xsl:for-each select="wt:weetest/wt:elementwrapper">
<div>
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of disable-output-escaping="no" select="wt:data_uri"/>
</xsl:attribute>
<xsl:value-of select="wt:data_name"/>
</xsl:element>
</div>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
I need to tweak the stylesheet so that the name gets displayed without an anchor element if the URI is not valid.
I don't think this will be a big deal. I know there's an XPath element for conditionals.
<!DOCTYPE html PUBLIC "-//W3c//DTD HTML 4.01//EN" "http://www.w3c.org/tr/html4/strict.dtd">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>XML Test</title>
</head>
<body>
<div>
<a href="http://www.example.com/wee_test.html">Test</a>
</div>
<div>
<a href="">Test</a>
</div>
<div>
<a href="">Test</a>
</div>
</body>
</html>
What I want is:
<!DOCTYPE html PUBLIC "-//W3c//DTD HTML 4.01//EN" "http://www.w3c.org/tr/html4/strict.dtd">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>XML Test</title>
</head>
<body>
<div>
<a href="http://www.example.com/wee_test.html">Test</a>
</div>
<div>Test</div>
<div>Test</div>
</body>
</html>
http://www.w3schools.com/xsl/xsl_if.aspSorry to break monolog hope this is useful
Yes, it was, but I needed an alternative path, so I chose
[w3schools.com], <xsl:choose>
[w3schools.com] and <xsl:when>
[w3schools.com] instead: <xsl:otherwise>
To wit:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:wt="http://www.example.com" exclude-result-prefixes="wt">
<xsl:output method="html" version="4.01"/>
<xsl:output doctype-system="http://www.w3c.org/tr/html4/strict.dtd"/>
<xsl:output doctype-public="-//W3c//DTD HTML 4.01//EN"/>
<xsl:template match="/">
<html>
<head>
<title>XML Test</title>
</head>
<body>
<xsl:for-each select="wt:weetest/wt:elementwrapper">
<div>
<xsl:choose>
<xsl:when test="wt:data_uri!= ''">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of disable-output-escaping="no"
select="wt:data_uri"/>
</xsl:attribute>
<xsl:value-of select="wt:data_name"/>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="wt:data_name"/>
</xsl:otherwise>
</xsl:choose>
</div>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
I suspect that I will learn more graceful ways to do the test, but this works for now.
However, I really appreciate my first real response on this forum. I'm not being facetious. I really do appreciate it.
If this bothers people, then I'll stop. I just figured that people may appreciate a clear and simple log of the process of learning XSLT. It seems to be something in rather short supply out there.
In any case, I may be winding down anyway. I seem to have gotten to the point where I can pretty much customize the transform.
I'll start with a full XHTML page, a fragmentary XHTML page, move on to a WML 2.0 page, then do a WML 1.0 page (the WURFL stuff is very useful here). After that, I'll do an RSS 1.0 page (maybe I'll chicken out and do a 2.0), a JSON transform, then move on to Excel and Word dumps.
After all, this is exactly what XSLT is supposed to be good for. I'm creating an SDK for the site, and this looks like the ideal solution.
[edited by: encyclo at 2:13 pm (utc) on April 1, 2007]
In fact, Microsoft has even gone as far as designing an executable form of XML, sort of like XSLT, called XAML [msdn2.microsoft.com].
It was supposed to have been a major part of Vista, but I haven't heard very much about it lately. It may be fizzling.
It looks like I'm not doing things very efficiently. I want to see if there is a way to do subroutines and includes.
I have my hello world project operating exactly as I'd like. It currently produces very good XHTML 1.1, formatted well.
I need to start looking at how PHP uses XSLT. I have been using <oXygen> for all this work. I've heard that PHP XSLT has performance issues. As some of these dumps can get pretty big, that concerns me.
I want to see if there is a way to do subroutines and includes.
[w3schools.com...] gives example of a call passing parameters.
Their parameter mechanism is really odd.
Do you know how to set a parameter across iterations?
I have a loop, where I am displaying rows of information. I want to give them alternating CSS classes, so I need a param that remembers its value, and allows you to toggle it.
I see tons of stuff about how to set parameters from the invocation engine and when calling "subroutine" templates, but zip on how to use a parameter like a typical variable.
Basically, every example shows a parameter being a value that is affected from outside the context, and brought into the context. There is nothing about switching values within the same context.
Have you a case in mind the needs variable variables?
Yup. I need to produce an alternating display, like an old line printer paper output. It's a pretty standard way to display tabular data. Let's go back to my "wee test" example:
We'll expand it to six elements:
<?xml version="1.0" encoding="ISO-8859-1"?>
<weetest xmlns="http://www.example.com"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.example.com file:/Users/cmarshall/Desktop/XMLTest/wee_test/wee_test.xsd">
<elementwrapper id="1">
<data_name>Test</data_name>
<data_uri>http://www.example.com/wee_test.html</data_uri>
</elementwrapper>
<elementwrapper id="2">
<data_name>Test</data_name>
<data_uri></data_uri>
</elementwrapper>
<elementwrapper id="3">
<data_name>Test</data_name>
</elementwrapper>
<elementwrapper id="4">
<data_name>Test</data_name>
<data_uri>http://www.example.com/wee_test.html</data_uri>
</elementwrapper>
<elementwrapper id="5">
<data_name>Test</data_name>
<data_uri></data_uri>
</elementwrapper>
<elementwrapper id="6">
<data_name>Test</data_name>
</elementwrapper>
</weetest>
Here's the current stylesheet:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wt="http://www.example.com" exclude-result-prefixes="wt">
<xsl:output indent="yes" method="html" version="4.01" doctype-system="http://www.w3c.org/tr/html4/strict.dtd" doctype-public="-//W3c//DTD HTML 4.01//EN"/>
<xsl:template match="/">
<html>
<head>
<title>XML Test</title>
</head>
<body>
<xsl:for-each select="wt:weetest/wt:elementwrapper">
<xsl:call-template name="render_one"/>
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template name="render_one">
<div>
<xsl:choose>
<xsl:when test="wt:data_uri!= ''">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of disable-output-escaping="yes" select="wt:data_uri"/>
</xsl:attribute>
<xsl:value-of select="wt:data_name"/>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="wt:data_name"/>
</xsl:otherwise>
</xsl:choose>
</div>
</xsl:template>
</xsl:stylesheet>
Here's how it renders so far:
<!DOCTYPE html PUBLIC "-//W3c//DTD HTML 4.01//EN" "http://www.w3c.org/tr/html4/strict.dtd">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>XML Test</title>
</head>
<body>
<div>
<a href="http://www.example.com/wee_test.html">Test</a>
</div>
<div>Test</div>
<div>Test</div>
<div>
<a href="http://www.example.com/wee_test.html">Test</a>
</div>
<div>Test</div>
<div>Test</div>
</body>
</html>
Here's how I want it to render:
<!DOCTYPE html PUBLIC "-//W3c//DTD HTML 4.01//EN" "http://www.w3c.org/tr/html4/strict.dtd">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>XML Test</title>
</head>
<body>
<div class="alt_0">
<a href="http://www.example.com/wee_test.html">Test</a>
</div>
<div class="alt_1">Test</div>
<div class="alt_0">Test</div>
<div class="alt_1">
<a href="http://www.example.com/wee_test.html">Test</a>
</div>
<div class="alt_0">Test</div>
<div class="alt_1">Test</div>
</body>
</html>
The standard way to do this is to have a class variable that you toggle with an if/then conditional.
<xsl:number value="position() mod 2" format="1" />
should give alternate 0 and 1
Here's the modified stylesheet:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wt="http://www.example.com" exclude-result-prefixes="wt">
<xsl:output indent="yes" method="html" version="4.01" doctype-system="http://www.w3c.org/tr/html4/strict.dtd" doctype-public="-//W3c//DTD HTML 4.01//EN"/>
<xsl:template match="/">
<html>
<head>
<title>XML Test</title>
</head>
<body>
<xsl:for-each select="wt:weetest/wt:elementwrapper">
<xsl:call-template name="render_one"/>
</xsl:for-each>
</body>
</html>
</xsl:template>
<xsl:template name="render_one">
<xsl:element name="div">
<xsl:attribute name="class">
<xsl:text>alt_</xsl:text>
<xsl:number value="position() mod 2" format="1" />
</xsl:attribute>
<xsl:choose>
<xsl:when test="wt:data_uri!= ''">
<xsl:element name="a">
<xsl:attribute name="href">
<xsl:value-of disable-output-escaping="yes" select="wt:data_uri"/>
</xsl:attribute>
<xsl:value-of select="wt:data_name"/>
</xsl:element>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="wt:data_name"/>
</xsl:otherwise>
</xsl:choose>
</xsl:element>
</xsl:template>
</xsl:stylesheet>
Thanks!
It just took looking at it from a different angle.